[$ # display each channel that has been subscribed too.
my @my_channels = get_my_sorted_channels("title", "data");
# get the user's window target preference (which controls
# whether links should open up in the current or a new window.
my $link_target = get_setting( "user_link_target" );
# and display the HTML for each subscription.
foreach my $my_channel (@my_channels) {
# if we just imported a load of channels, then date_downloaded
# has not yet been set, so we create a dummy entry for it.
my $date_downloaded = $my_channel->{date_downloaded} || "This channel has not yet been downloaded.";
# display each channel table row.
to_browser(qq{\n});
to_browser(qq{ \n});
to_browser(qq{ \n});
to_browser(qq{ \n});
to_browser(qq{ \n});
to_browser(qq{ \n});
to_browser(qq{ \n});
}
# and spit it out.
$OUT = send_to_browser;
$]
|